.search_input input[type=text]{
    width: 100%;
    margin: 10px 0;
    border-radius: 5px;
    padding: 15px 18px;
    box-sizing: border-box;
  }
.auto_com li{
    list-style: none;
    padding: 0.5em 1em;
    font-family: 'Kavivanar', sans-serif;
    border-radius: 3px;
    display: none;
}

.search_input .auto_com{
    cursor: pointer;
    color: #fff;
    background-color: rgb(224, 83, 32);
    padding: 0px;
    max-height: 80em;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}

.auto_com li:hover{
    color: rgb(224, 83, 32);
    background-color: #fff;
}

.search_input.active .auto_com{
    padding: 0.5em 0em;
    opacity: 1;
    pointer-events: auto;
}

.search_input.active .auto_com li {
    display: block;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.input-container {
    position: relative;
}

.input-container i {
    position: absolute;
    left: 10px; 
    top: 50%;
    font-size: 18px; /* Adjust the font size as needed */
    color: #66a1f3; /* Set the color to blue */
    transform: translateY(-50%);
}

#bus{
    font-size: 17px;
}

#input-box,
#input-box2 {
    padding-left: 30px; /* Adjust the padding to accommodate the icon width */
    /* Add any other styling you need for your input boxes */
}


@media(min-width: 961px) {
    #input-box,
#input-box2 {
    padding-left: 40px; /* Adjust the padding to accommodate the icon width */
    /* Add any other styling you need for your input boxes */
} 
  }